From: Katsumi Yamaoka Date: Wed, 18 Aug 2010 07:45:14 +0000 (+0000) Subject: create-animated-image: Don't add heuristic mask to image (Bug#6839). X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~6605^2~63 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=54a50fc263b8f6e3f48d7caba5860fe6690c5492;p=emacs.git create-animated-image: Don't add heuristic mask to image (Bug#6839). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 344ff665c83..1914018aa94 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-08-18 Katsumi Yamaoka + + * image.el (create-animated-image): Don't add heuristic mask to image + (Bug#6839). + 2010-08-18 Jan Djärv * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard): Use diff --git a/lisp/image.el b/lisp/image.el index 287cca81570..4a68b4999ea 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -616,7 +616,7 @@ Images should not be larger than specified by `max-image-size'." (let* ((animate (memq type image-animated-types)) (image (append (list 'image :type type (if data-p :data :file) file-or-data) - (if animate '(:index 0 :mask heuristic)) + (if animate '(:index 0)) props))) (if animate (image-animate-start image))